home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / init / mountall-net.conf < prev    next >
Text File  |  2009-10-26  |  335b  |  16 lines

  1. # mountall-net - Mount network filesystems
  2. #
  3. # Send mountall the USR1 signal to inform it to try network filesystems
  4. # again.
  5.  
  6. description    "Mount network filesystems"
  7.  
  8. start on net-device-up
  9.  
  10. task
  11.  
  12. script
  13.     PID=$(status mountall 2>/dev/null | sed -e '/,/{s/.*,[^0-9]*//;q};d')
  14.     [ -n "$PID" ] && kill -USR1 $PID || true
  15. end script
  16.